home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / SPAD.C < prev    next >
Text File  |  1993-08-05  |  422b  |  15 lines

  1. /***************************************************************
  2.     Okome Super Famic PAD V1.05   High-C V1.7
  3.                                 Copyright(C) おこめ 1991,1992
  4. ***************************************************************/
  5.  
  6. int spad(int n)        /*    SFC PAD 方向ボタンの読み取り    */
  7. {
  8.     if (n == (n & 1))    {
  9.         _outb(0x4d6, 15);
  10.         return (~_inb(0x4d0 + n * 2) & 0xf);
  11.     }    else    {
  12.         return (0);
  13.     }
  14. }
  15.